home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 July / EnigmA AMIGA RUN 20 (1997)(G.R. Edizioni)(IT)[!][issue 1997-07 & 08][EAR-CD IV].iso / earcd / biz / dbase / db3_4src.lha / db3.4 / dbRexx.h < prev    next >
C/C++ Source or Header  |  1995-09-05  |  551b  |  22 lines

  1. /* Headerfile for the Rexx support for db */
  2.  
  3. #include <exec/types.h>
  4. #include <exec/memory.h>
  5. #include <exec/ports.h>
  6. #include <rexx/rxslib.h>
  7. #include <rexx/storage.h>
  8. #include <rexx/errors.h>
  9.  
  10. extern struct MsgPort *MyRexxPort;
  11. extern char MyRexxPortName[];    /* Enough for name and trailing numbers */
  12.  
  13.  
  14. /* Functions you may call */
  15.  
  16. struct MsgPort *SetupRexxPort(char *basename);
  17. void CloseRexxPort(struct MsgPort *rexxport);
  18.  
  19. BOOL SendRexxCommand(char *name);
  20. BOOL SendRexxStrCommand(char *name);
  21. BOOL HandleRexxMessage(struct MsgPort *rexxport);
  22.